for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Icon = /** @class */ (function () {
function Icon(id, version, cdn) {
this.id = id;
this.cdn = cdn;
this.version = version;
}
Icon.prototype.getURL = function () {
return this.cdn + "/" + this.version + "/img/profileicon/" + this.id + ".png";
};
return Icon;
}());
exports.Icon = Icon;
//# sourceMappingURL=icon.js.map